home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2012 January / ME_2012_01.iso / Dropbox / Dropbox 1.3.2.dmg / Dropbox.app / Contents / Resources / __error__.sh < prev    next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  2011-05-12  |  449 b   |  17 lines

  1. #!/bin/sh
  2. #
  3. # This is the default apptemplate error script
  4. #
  5. if ( test -n "$2" ) ; then 
  6.     echo "$1 Error"
  7.     echo "An unexpected error has occurred during execution of the main script"
  8.     echo ""
  9.     echo "$2: $3"
  10.     echo ""
  11.     echo "See the Console for a detailed traceback."
  12. else
  13.     echo "$1 Error"
  14.     echo "MacPython 2.3 is required to run this application.";
  15.     echo "ERRORURL: http://homepages.cwi.nl/~jack/macpython/index.html Visit the MacPython Website";
  16. fi
  17.